home *** CD-ROM | disk | FTP | other *** search
/ Megahits 5 / Megahits 5 (1994)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso / archive / show / superview_lib6_3.lha / superview-lib / Programmers / include / superview / svinfo.h < prev   
C/C++ Source or Header  |  1994-06-06  |  1KB  |  41 lines

  1. /* superview/svinfo.h           */
  2. /* Version    : 6.1            */
  3. /* Date       : 27.05.1994        */
  4. /* Written by : Andreas R. Kleinert */
  5.  
  6. #ifndef SUPERVIEW_SVINFO_H
  7. #define SUPERVIEW_SVINFO_H
  8.  
  9. #ifndef SUPERVIEW_SUPERVIEW_H
  10. #include <superview/superview.h>
  11. #endif /* SUPERVIEW_SUPERVIEW_H */
  12.  
  13.  
  14. /* *************************************************** */
  15. /* *                             * */
  16. /* * Information structures (SVObjects & SVDrivers)  * */
  17. /* *                             * */
  18. /* *************************************************** */
  19.  
  20.    /* the following have been introduced with V6 : */
  21.  
  22. struct SVObjectInfo
  23. {
  24.  ULONG                 soi_Type;      /* valid SubTypeCode value       */
  25.  ULONG                 soi_Flags;     /* Copy of Flags from svo_Flags  */
  26.  UBYTE                *soi_TypeName;  /* Copy of svo_TypeID and        */
  27.                                       /* svo_SubTypeID[x]              */
  28.  
  29.  struct SVObjectInfo *soi_NextEntry; /* Pointer to next entry or NULL */
  30. };
  31.  
  32. struct SVDriverInfo
  33. {
  34.  ULONG                 sdi_Flags;     /* Copy of Flags from svd_Flags  */
  35.  UBYTE                *sdi_Name;      /* Pointer to svd_ID             */
  36.  
  37.  struct SVDriverInfo *sdi_NextEntry; /* Pointer to next entry or NULL */
  38. };
  39.  
  40. #endif /* SUPERVIEW_SVINFO_H */
  41.